﻿@charset "utf-8";

/* 集约化02 */

/* 链接 */
a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #2f7dc7;
    text-decoration: none;
}

a:link{
	text-decoration:none; 
}  /* 指正常的未被访问过的链接*/

a:visited{
	text-decoration:none; 
}/*指已经访问过的链接*/

a:hover{
	text-decoration:none;
}/*指鼠标在链接*/}

a:active{
	text-decoration:none;
}/* 指正在点的链接*/ 

/* 头部、底部、公用 */

body {
    overflow-x: hidden;
    font-size: 18px;
    background: #fff;
}

.header {
    /*background: url(../images_2021/head.jpg) 50% 0px no-repeat;*/
	background: url(../images_2021/bg10.jpg) 50% 0px no-repeat;
    background-size: cover;
}

.ht {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.3);
}

.ht a {
    font-size: 14px;
    margin: 0 10px;
    line-height: 30px;
}

.ht a i{
    font-size: 18px;
    color: #909ba5;
    line-height: 30px;
}

.ipv{
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
    border-radius: 2px;
    background-color: #7ca0c1;
}
.inner a.ipv, .inner a.ipv:hover {
    color: #fff;
}
.header h1 {
    width: 470px;
    height: 206px;
    background: url(../images_2021/logo.png) 0 50% no-repeat;
}

.header h1 a {
    display: block;
    height: 130px;
	background-color: transparent !important;
}

.nav {
    height: 53px;
    background-color: #2f7dc7;
    border-bottom: 2px solid #135a9c;
}

.nav li {
    float: left;
    position: relative;
    width: 16.66%;
}

.nav li a {
    display: block;
    height: 53px;
    padding: 15px 0px;
    line-height: 25px;
    font-size: 22px;
    color: #fff;
    /*font-weight: bold;*/
    text-align: center;
}

.nav li+li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 25px;
    margin-top: -14px;
    background-color: #fff;
}

.nav li a:hover,
.nav li.current {
    height: 53px;
    background-color: #135a9c;
}

/* 搜索 */

.header .search{
    /*width: 475px;*/
	width: 360px;
	position:relative;
    /*margin: 6% auto 0;*/
	margin: 3% auto 0;
}

.search input {
    box-sizing: border-box;
    /*width: 380px;
    height: 45px;*/
	width: 260px;
	height: 40px;
    line-height: 25px;
    font-size: 16px;
    margin-right: 0px;
    /*padding: 10px 20px 10px 40px;*/
	padding: 10px 20px 10px 10px;
    border: none;
    color: #b4b3b3;
    box-shadow: none;
    border-radius: 3px 0px 0px 3px;
    outline: none;
    margin-top: -3px;
    /*background: #fff url(../images_2021/q.png) 10px 50% no-repeat;*/
	background: #fff;
}

.search button {
    box-sizing: border-box;
    /*width: 68px;
    height: 45px;
	line-height: 45px;
	background: #209efa;*/
	width: 40px;
	height: 41px;
	line-height: 40px;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    margin-left: -5px;
    border-radius: 0px 3px 3px 0px;
	background: #209efa url(../images_2021/q.png) 10px 50% no-repeat;
	background-size: 50%;
	position: absolute;
	top: -4px;
}

.search p{
    color: #878787;
    font-size: 14px;
    line-height: 40px;
}

.search p a{
    color: #878787;
    padding: 0px 5px;
}

.inner,
.content,
.links,
.copyright {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 移动端菜单开始 */

.mask {
    display: none;
    position: fixed;
    z-index: 597;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .2s;
}

.mask.on {
    display: block;
    opacity: 1;
}

body.modal-open {
    position: fixed;
    width: 100%;
}

.menu {
    display: none\9;
    position: fixed;
    z-index: 598;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    background-color: #f5f5f5;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.menu.on {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.menu img {
    display: block;
    width: 70%;
    margin: 60px 20px;
}

.menu li a {
    position: relative;
    display: block;
    margin: 0 15px;
    padding: 0 15px;
    line-height: 50px;
    font-size: 16px;
    color: #048;
}

.menu li a:after {
    content: " ";
    display: inline-block;
    height: 6px;
    width: 6px;
    border-width: 2px 2px 0 0;
    border-color: #ccc;
    border-style: solid;
    -webkit-transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 10px;
}

.menu li+li a {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .2);
}

.menu>ul>li:nth-child(1) {
    animation-delay: .1s;
}

.menu>ul>li:nth-child(2) {
    animation-delay: .2s;
}

.menu>ul>li:nth-child(3) {
    animation-delay: .3s;
}

.menu>ul>li:nth-child(4) {
    animation-delay: .4s;
}

.menu>ul>li:nth-child(5) {
    animation-delay: .5s;
}

.menu>ul>li:nth-child(6) {
    animation-delay: .6s;
}

.menu-btn {
    display: none;
    position: absolute;
    top: 55px;
    right: 0;
    z-index: 599;
    width: 50px;
    height: 50px;
}

.menu-btn.on,
.menu-btn.fixed {
    position: fixed;
    top: 50px;
}

.menu-btn>span {
    position: absolute;
    left: 0;
    right: 0;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: #048;
    border-radius: 2px;
    transition: .25s;
}

.menu-btn>span:nth-child(1) {
    top: 18px;
}

.menu-btn>span:nth-child(2) {
    top: 24px;
}

.menu-btn>span:nth-child(3) {
    top: 30px;
}

.menu-btn.on span,
.hd+.menu-btn>span {
    background: #048;
}

.menu-btn.on span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

.menu-btn.on span:nth-child(2) {
    opacity: 0;
    transform: rotate(90deg);
}

.menu-btn.on span:nth-child(3) {
    top: 21px;
    transform: rotate(135deg);
}

/* 移动端菜单结束 */


/* 底部 */

.footer {
    color: #fff;
    padding: 20px 0;
    background-color: #3a3a3a;
}

.links>ul>li {
    position: relative;
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.links>ul>li>a {
    display: block;
    color: #fff;
    margin: 0 -5px;
    padding: 0 20px;
    background: #434444 url(../images_2021/links_arr.png) 96% 50% no-repeat;
}

.links li ul {
    display: none\9;
    z-index: -1;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 40px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 1px solid #ddd;
    background-color: #fff;
    opacity: 0;
    transform: translate(0, 3px);
    transition: opacity, transform .3s;
}

.links li:hover ul {
    display: block\9;
    z-index: 9;
    opacity: 1;
    transform: translate(0, 0);
}

.links li li {
    border-top: 1px solid #ddd;
    line-height: 39px;
    text-align: center;
    transition: all .3s;
}

.links li li:hover {
    background-color: #f8f8f8;
}

.links li li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
    font-size: 14px;
}

.copyright {
    line-height: 32px;
}

.copyright p a,
.copyright p span {
    color: #fff;
    margin: 0 10px;
}

.p20{
    background-color: #434444;
}

.mr20{
    margin-right:20px; 
}

.gov {
    position: absolute;
    top: 50%;
    right: 13%;
    width: 80px;
    height: 80px;
    margin-top: -40px;
}

.jc {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 110px;
    height: 55px;
    margin-top: -22px;
}

.w837{
    width: 837px;
}

.copyright i{
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
}

@media (max-width: 1200px) {
    body {
        background-position: 50% 140px;
		width:1200px;
		margin:0 auto;
    }

    .header {
        background-position: 50% 0px;
    }

    /*.header h1 {
        height: 100px;
        background-position: 16px 50%;
        background-size: auto 55%;
    }*/

    .header h1 a {
        display: block;
        height: 100px;
    }

    /*.ht .fl,
    .nav,
    .header .search p strong {
        display: none;
    }*/

    .ht .fr {
        text-align: center;
        font-size: 12px;
    }

    /*.ht .fr,
    .header h1,
    .inner,
    .content,
    .links,
    .copyright {
        width: 100%;
    }*/

    .menu-btn {
        display: block;
    }

    /*.header .search {
        width: auto;
        margin: 20px;
        float: none;
    }

    .header .search input {
        width: 98%;
        height: 48px;
        padding: 15px 65px 15px 45px;
        margin: 0;
    }

    .header .search button {
        width: 50px;
        height: 50px;
        margin-left: -50px;
        background-position: center;
        line-height:50px;
        font-size: 16px;
    }

    .header .search p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 10px;
    }*/

    .footer {
        padding: 20px;
    }

    .links {
        padding: 0 20px;
    }

    .copyright {
        line-height: 22px;
        font-size: 14px;
    }

    .handle {
        margin-bottom: 10px;
    }

    .grid{
        padding:0px 20px;
    }

}

@media (max-width: 1024px) {

    .w837 {
        width: 681px;
    }
}

@media (max-width: 768px) {

    .copyright {
        text-align: center;
    }

    .copyright p span {
        display: block;
    }

    .copyright>.p20 {
        margin: 0;
        width: 100%;
    }

    .w837{
        width: auto;
    }

    .copyright>.p20>div{
        float: none;
    }

    .footer .gov,
    .footer .jc {
        position: relative;
        display: inline-block;
        top: 0;
        margin-top: 20px;
        vertical-align: middle;
    }
}


/* 公用 */

.content .row {
    margin-right: -20px;
    margin-left: -20px;
}

.content .row>.col,
.content .row>[class*="col-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.tab-pane {
    position: relative;
    overflow: hidden;
}

.tab-pane .pane>ul,
.tab-pane .pane>div {
    animation-duration: .3s;
}

.tab a,
.tab b  {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    margin: 0px 10px;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
}

.tab .current {
    color: #005aa8;
}

h3.tab {
    height: 50px;
    /* margin-bottom: 10px; */
    line-height: 50px;
    border-bottom: 1px solid #ddd;
}

h3.tab a:after,
h3.tab b:after  {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scale(0, 1);
    transition: transform .3s;
}

h3.tab a.current:after,
h3.tab b.current:after   {
    background-color: #cf1823;
    transform: scale(1, 1);
}

@media (max-width: 1200px) {
    .tab {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        margin-left: -2px;
        margin-right: -2px;
    }

    .tab a ,
    .tab b {
        /*width: 0%;*/
        min-width: inherit;
        position: relative;
        overflow: hidden;
        display: block;
        /*margin: 0 2px;*/
        padding: 0;
        /*font-size: 18px;*/
        box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        flex: 1;
        overflow: hidden;
        white-space: nowrap;
        word-break: keep-all;
        text-overflow: ellipsis;
    }
}

@media (max-width: 360px) {
    h3.tab {
        margin-left: -10px;
        margin-right: -10px;
    }

    h3.tab a,
    h3.tab b {
        font-size: 18px;
    }
}

.list-a li i {
    width: 40px;
    height: 40px;
    background-image: url(../images_2021/icons_02.png);
    background-image: url(../images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.grid h2 {
    font-weight: bold;
    padding-bottom: 10px;
    line-height: 34px;
    font-size: 24px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.pt30 {
    padding-top: 30px;
}

.md-blue {
    background-color: #2d8fff;
}

.md-orange {
    background-color: #ff9d08;
}

.t3 b {
    font-weight: normal;
    font-size: 18px;
    color: #333;
    border-left: 8px solid #2d8fff;
}

.pages .current {
    background-color: #2d8fff;
}

.table-bordered {
    margin-bottom: 0px;
}

.table-bordered>tbody>tr>th {
    background-color: #f9f9f9;
    text-align: center;
    color: #048;
}

/* 首页 开始*/

/* part1开始 */
.headline{
    font-size: 33px;
    line-height: 40px;
    padding: 30px;
    border:1px solid #e6e6e6;
}

.headline a{
    color: #135a9c;
    font-weight: bold;
}

.news{
    margin-top:-10px; 
    height: 377px;
}

.focus{
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.focus,
.focus .pic {
    position: relative;
    height: 437px;
}

.focus .pic>div {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.focus .pic img {
    width: 100%;
    height: 345px;
}

.focus .pic span {
    text-align: center;
    display: block;
    padding: 15px 50px;
    line-height: 1.5em;
    font-size: 20px;
    font-weight: bold;
}

.focus .focus-prev,
.focus .focus-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    line-height: 60px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .5);
    background-size: 24px auto;
    color: #fff;
    opacity: 0;
    transition: all .3s;
}

.focus .focus-prev .iconfont,
.focus .focus-next .iconfont {
    font-size: 28px;
    font-weight: normal;
}

.focus .focus-prev {
    transform: translate(-50px, 0);
    left: 0;
    background-image: none;
}

.focus .focus-next {
    transform: translate(50px, 0);
    right: 0;
    background-image: none;
}

.focus:hover .focus-prev,
.focus:hover .focus-next {
    opacity: 1;
    transform: translate(0, 0);
}

.focus .navi {
     position: absolute;
     bottom: 14px;
     left: auto;
     right: 0;  
     z-index: 9;
     width: auto;
     margin-bottom: 4px\9;
     padding: 0 10px;
     text-align: right;
 }
.focus .navi li {
    float: left;
    width: 8px;
    height: 8px;
    margin: 0 2px;
    font: 0/0 lx;
    border: 1px solid #fff;
    color: transparent;
    border-radius: 100px;
    transition: all .3s;
}

.focus .navi li.on {
    background-color: #fff;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.focus .swiper-pagination-bullet {
    border: 1px solid #fff;
    background: none;
    opacity: 1;
}

.focus .swiper-pagination-bullet-active {
    background-color: #fff;
}

@media (max-width: 1200px) {
    .headline{
        font-size: 22px;
        line-height: 30px;
        padding: 10px;
    }

    .focus,
    .focus .pic {
        position: relative;
        width: 100%;
        height: auto;
    }

    .focus .pic>div {
        position: relative;
        overflow: hidden;
        width: 100%;
        padding: 60% 0 0;
    }

    .focus .pic img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }

    .focus {
        margin-bottom: 20px;
    }

}

/*@media (max-width: 1024px) {
    .list-t li a {
        width: 80%;
    }
}*/

@media (max-width: 768px) {
    .list-t li a {
        width: 100%;
    }
}

.a1{
    padding: 15px 0px;
    line-height: 40px;
    background: url(../images_2021/news_bg.jpg) 0px 0px no-repeat;
    background-size: cover;
}

.a1 li{
    width: 33.33%;
    color: #135a9c;
}

.a1 li a {
    width: 100%;
    color: #135a9c;
    line-height: 40px;
    font-size: 20px;
    text-align: left;
    padding-right: 10px;
}

.a1 li i {
    float: left;
    border-radius: 100px;
    margin: 0px 10px 0px 25px;
}

.a1 li i.s1{
    background-position: 0px 0px;
}

.a1 li i.s2{
    background-position: -40px 0px;
}

.a1 li i.s3{
    background-position: -80px 0px;
}

@media (max-width: 480px) {
    .a1 {
        background-size: cover;
    }

    .a1 li{
        color: #fff;
        width: 33.33%;
    }

    .a1 li a{
        text-align: center;
        padding: 0px;
        display: block;
        font-size: 16px;
    }

    .a1 li i {
        float: none;
        margin:0px auto;
        display: block;
    }
}


/* part1结束 */

/* part2开始 */

.topic {
    position: relative;
	margin-right: -10px;
}

.topic h2 {
    width: 35px;
    height: 90px;
    margin-right: 10px;
    background: url(../images_2021/topic.png) 50% 0 no-repeat;
}

.topic h2 a{
    display: block;
    width: 100%;
    height: 100%;
}

.topic .scroll {
    position: relative;
}

.topic li {
    width: 260px\9;
	height: 90px;
}

.topic li a {
    display: block;
    width: 260px\9;
    margin: 0 10px;
}

.topic li img {
    width: 100%;
    width: 260px\9;
	height: 100%;
}

.topic-prev,
.topic-next {
    position: absolute;
    top: 53%;
    width: 13px;
    height: 44px;
    margin-top: -22px;
    cursor: pointer;
	z-index: 999;
}

.topic-prev {
    left: 615px;
    background: url(../images_2021/arr_l.png) 0 0 no-repeat;
}

.topic-next {
    right: 10px;
    background: url(../images_2021/arr_r.png) 0 0 no-repeat;
}

.topic_ds{
    display: block;
    width: 260px;
    height: 90px;
    margin:0px 10px;
}

.topic_ds img{
    width: 100%;
    height: 100%;
}


@media (max-width: 1200px) {
    .topic .scroll {
        margin: 0 -10px;
    }

    .topic h2,
    .topic-prev,
    .topic-next {
        display: none;
    }

}
@media (max-width: 480px) {
    .topic_ds{
        width: 100%;
        height: 90px;
        float: none;
        display: block;
        text-align: center;
        margin: 0px auto 20px;
    }

}
/* part2结束 */

/* part4开始 */
.kjzc{
    width: 100%;
    display: inline-block;
    padding: 20px 50px;
    background: url(../images_2021/kjzc_bg.jpg) 0 0 no-repeat;
}

.kjzc_logo{
    width: 346px;
    height: 79px;
    background: url(../images_2021/kjzc_logo.png) 0 50% no-repeat;
}

.a2{
    float: right;
    margin:10px 30px;
}

.a2 li{
    width: 25%;
    padding: 10px 20px;
}

.a2 li i{
    margin-right: 10px;
    border-radius: 100px;
}

.a2 li i.s1{
    background-position: 0px -40px;
}

.a2 li i.s2{
    background-position: -40px -40px;
}

.a2 li i.s3{
    background-position: -80px -40px;
}

.a2 li i.s4{
    background-position: -120px -40px;
}

.a1 li a:hover i,
.a2 li a:hover i {
    box-shadow: 0 0 0 6px #e3f2fe;
}

.a1 li a:hover,
.a2 li a:hover{
    font-weight: bold;
}


@media (max-width: 1024px) {
    .kjzc{
        padding: 20px;
    }

    .kjzc_logo{
        width: 27%;
        background-size: auto 70%;
    }   

    .a1 li a{
        font-size: 16px;
        text-align: center;
    }

    .a1 li i{
        float: none;
        display: block;
        margin: 0px auto;
    }

    .a2 li{
        padding: 10px;
    }

}

@media (max-width: 768px) {

    .kjzc_logo{
        width: 36%;
    }
    
    .a2{
        margin: 0px;
    }

    .a2 li {
        padding: 0px 10px;
    }

    .a2 li i{
        display: block;
        margin: 0px auto;
    }

    .a2 li a{
        text-align: center;
    }

}

@media (max-width: 480px) {

    .kjzc{
        padding: 20px;
        background-size: cover;
    }

    .kjzc_logo{
        width: 100%;
        background-size: auto 85%;
    }

    .a2 {
        margin:0px 30px;
    }

    .a2 li{
        width: 50%;
        padding: 0px;
        margin: 10px 0px;
    }

}

@media (max-width: 320px) {

    .kjzc_logo{
        background-size: auto 70%;
    }   

     .a2 li i{
        display: block;
        margin: 0px auto;
    }

}


/* part4结束 */

/* part5开始 */
.t4,
.t5 {
    margin: 0px 0px 20px 0px;
    padding: 0px;
    line-height: 56px;
}

.t4 b,
.t5 b{
    display: inline-block;
    font-size: 24px;
    color: #135a9c;
    padding: 0px 5px;
}

.t4{
    /*background: url(../images_2021/line.jpg) bottom left no-repeat;*/
	border-bottom: 3px solid #ccc;
}

.t5{
    background: url(../images_2021/line02.jpg) bottom left no-repeat;
}

.a3{
    margin: 0px -2% 20px -2%;
}

/*.a3 li{
    width: 29.33%;
    margin: 1% 2%;
}*/

.a3 li a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    /*height: 70px;*/
    line-height: 40px;
    padding: 10px;
    background-color: #f5f5f5;
}

.a3 li a:hover {
    /*font-weight: bold;*/
    box-shadow: 0 3px 12px rgba(0, 85, 136, .2);
    transform: translate(0, -3px);
}

.a3 li i {
    margin-right: 10px;
}

.a3 li i.s1{
    background-position: 0px -80px;
}

.a3 li i.s2{
    background-position: -40px -80px;
}

.a3 li i.s3{
    background-position: -80px -80px;
}

.a3 li i.s4{
    background-position: -120px -80px;
}

.a3 li i.s5{
    background-position: -160px -80px;
}

.a3 li i.s6{
    background-position: -200px -80px;
}

.policy .tab {
    height: 40px;
    margin-bottom: 10px;
    line-height: 40px;
    border-bottom: none;
}

.policy .tab a{
    font-size: 20px;
    margin: 0px 1px;
    background-color: #e6e6e6;
}

.policy .tab a.current{
    color: #fff;
    background-color: #1484d6;
    transform: scale(1, 1);
}

.policy .tab a:after{
    display: none;
}

.policy .list-t li {
    padding-left: 0px;
    border-bottom: 1px dashed #ccc;
}

.policy .list-t li:last-child{
    border-bottom: none;
}

.policy .list-t li:before{
    display: none;
}

.service {
    width: 48%;
    float: left;
    margin-right: 2%;
    padding: 95px 30px 20px 30px;
    background:#eff6fa  url(../images_2021/zwfw.jpg) center  no-repeat;
    background-size: cover;
}

.service .list-t li{
    padding-left: 30px;
    background: url(../images_2021/dot.png) 10px 45% no-repeat;
}

.service .list-t li:before{
    display: none;
}

.bmcx_box{
    width: 48%;
    float: right;
    padding:10px 20px;
    background: url(../images_2021/cx_bg.jpg) 0 0 no-repeat;
    background-size: cover;
}

/* 20210715修改、新增 开始 */

.t6 {
    padding: 20px 0px;
    line-height: 40px;
}

.t6 a {
    color: #cd0306;
    font-size: 22px;
    position: relative;
    font-weight: bold;
}

.t6 a:hover{
    color: #4e8df6;
}

.a8 {
    margin-bottom: 30px;
}

.a8 li{
    width: 50%;
    padding: 0px 10px;
    text-align: center;
    line-height: 40%;
    font-size: 20px;
}

.a8 li i{
    display: block;
    margin:0px auto 20px;
}

.a8 li i.s1{
    background-position: 0px -280px;
}

.a8 li i.s2{
    background-position: -40px -280px;
}

.a8 li a:hover{
    font-weight: bold;
}

/* 20210715修改、新增 结束 */

/*.t6 {
    height: 40px;
    line-height: 40px;
}

.t6 b {
    color: #135a9c;
    font-size: 22px;
    padding: 0px 75px;
    position: relative;
    font-weight: normal;
}

.t6 b:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #caddea;
}

.t6 b:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 70px;
    height: 1px;
    background-color: #caddea;
}*/

.bmcx{
    position: relative;
    margin: 21px 0px;
}

.bmyy {
    position: relative;
    margin: 5px 0px;
}

.bmcx .scroll,
.bmyy .scroll {
    position: relative;
    margin: 0 auto;
}

.bmcx li {
    width: 90px\9;
    line-height: 20px;
    text-align: center;
}

.bmcx li a {
    display: block;
    width: 90px\9;
    font-size: 16px;
}

.bmyy li {
    width: 180px\9;
    line-height: 20px;
    text-align: center;
}

.bmyy li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 80px;
    margin-top: -40px;
    border: 1px dashed #caddea;
}

.bmyy li a {
    display: block;
    width: 180px\9;
    font-size: 16px;
}

.bmcx li a i,
.bmyy li a i{
    display:block;
    margin: 0px auto;
    width: 40px;
    height: 40px;
    background-image: url(../images_2021/icons_02.png);
    background-image: url(../images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
    transition: all .3s;
}

.bmcx li a i.s1{
    background-position: -160px -160px;
}

.bmcx li a i.s2{
    background-position: -200px -160px;
}

.bmcx li a:hover i.s1{
    background-position: -160px -200px;
}

.bmcx li a:hover i.s2{
    background-position: -200px -200px;
}

/*.bmyy li a i.s1{
    background-position: 0px -240px;
}

.bmyy li a i.s2{
    background-position: -40px -240px;
}

.bmyy li a i.s3{
    background-position: -80px -240px;
}

.bmyy li a:hover i.s1{
    background-position: -120px -240px;
}

.bmyy li a:hover i.s2{
    background-position: -160px -240px;
}

.bmyy li a:hover i.s3{
    background-position: -200px -240px;
}*/

.bmyy li a i.s1{
    background-position: 0px -320px;
}

.bmyy li a i.s2{
    background-position: -40px -320px;
}

.bmyy li a i.s3{
    background-position: -80px -320px;
}

.bmyy li a i.s4{
    background-position: -120px -320px;
}

.bmyy li a i.s5{
    background-position: -160px -320px;
}

.bmyy li a i.s6{
    background-position: -200px -320px;
}

.bmyy li a i.s7{
    background-position: 0px -360px;
}

.bmyy li a i.s8{
    background-position: -40px -360px;
}

.bmyy li a i.s9{
    background-position: -80px -360px;
}

.bmyy li a i.s10{
    background-position: -120px -360px;
}

.bmyy li a:hover i.s1{
    background-position: 0px -400px;
}

.bmyy li a:hover i.s2{
    background-position: -40px -400px;
}

.bmyy li a:hover i.s3{
    background-position: -80px -400px;
}

.bmyy li a:hover i.s4{
    background-position: -120px -400px;
}

.bmyy li a:hover i.s5{
    background-position: -160px -400px;
}

.bmyy li a:hover i.s6{
    background-position: -200px -400px;
}

.bmyy li a:hover i.s7{
    background-position: -0px -440px;
}

.bmyy li a:hover i.s8{
    background-position: -40px -440px;
}

.bmyy li a:hover i.s9{
    background-position: -80px -440px;
}

.bmyy li a:hover i.s10{
    background-position: -120px -440px;
}


.bmcx li span,
.bmyy li span{
    display: inline-block;
    padding: 10px 0px;
    line-height: 20px;
} 

.bmcx-prev,
.bmcx-next,
.bmyy-prev,
.bmyy-next {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border-radius: 100px;
    border:1px solid #ccc;
    cursor: pointer;
    z-index: 999;
    transition: all .3s;
}

.bmcx-prev span,
.bmcx-next span,
.bmyy-prev span,
.bmyy-next span {
    display: block;
    width: 20px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #ccc;
}

.bmcx-prev,
.bmyy-prev{
    left: 40px;
    background-image: none;
    transform: translate(-50px, 0);
}

.bmcx-next,
.bmyy-next{
    right: 40px;
    background-image: none;
    transform: translate(50px, 0);
}

.bmyy_box{
    width: 100%;
    padding:10px 20px;
    background: url(../images_2021/y_bg.jpg) 0 0 no-repeat;
    background-size: cover;
}

@media (max-width: 1200px) {
    .bmcx .scroll {
        margin: 0 -10px;
    }

    .bmcx li span{
        display:inline-block;
    } 

}

@media (max-width: 1024px) {

    /*.a3 li{
        width: 46%;
    }*/
	.a3 li a{
		padding:0px;
	}

    /*.service {
        padding: 100px 20px 30px 20px;
        background-size: auto;
    }

    .service .list-t li{
        padding-left: 20px;
        background: url(../images_2021/dot.png) 5px 45% no-repeat;
    }

    .service .list-t li a{
        width: 100%;
    }*/
}

@media (max-width: 480px) {

    .a3 li a{
        font-size: 16px;
        padding: 15px 5px;
    }

    .a3 li i{
        margin-right:0px;
    }

    .policy{
        margin-bottom: 20px;
    }

    .service {
        width: 100%;
        float:none;
        margin:0px 0px 20px 0px;
        background:#eff6fa  url(../images_2021/zwfw.jpg) center  no-repeat;
        background-size: cover;
    }

    .service .list-t li{
        padding:0px  0px 0px 40px;
        background: url(../images_2021/dot.png) 20px 45% no-repeat;
    }

    .bmcx_box{
        width: 100%;
        float:none;
        margin-right: 0px;
    }

}


/* part5结束 */

/* part6开始 */
.data{
    display: inline-block;
    padding: 25px;
    background: url(../images_2021/sjly_bg.jpg) 0 0 no-repeat;
    background-size: cover;
}

.data h3{
    width: 80px;
    height: 90px;
    font-size: 0px;
    margin-right: 0px;
    display: inline-block;
    background: url(../images_2021/sjly.png) 0 0 no-repeat;
}

.a6 {
    float: left;
    width: 80%;
    margin-top: 5px;
}

.a6 li{
    width: 45%;
}

.a6 li a{
    display: block;
    float: left;
    line-height: 40px;
}

.a6 li i{
    margin:0px;
}

.a6 li i.s1{
    background-position: 0px -160px;
}

.a6 li i.s2{
    background-position: -40px -160px;
}

.a6 li i.s3{
    background-position: -80px -160px;
}

.a6 li i.s4{
    background-position: -120px -160px;
}

.a6 li:hover i.s1{
    background-position: 0px -200px;
}

.a6 li:hover i.s2{
    background-position: -40px -200px;
}

.a6 li:hover i.s3{
    background-position: -80px -200px;
}

.a6 li:hover i.s4{
    background-position: -120px -200px;
}

@media (max-width: 1024px) {
    .data{
        padding:20px;
        background-size: cover;
    }

    .data h3{
        display: none;
    }

    .a6{
        width: 100%;
    }

    /*.a6 li{
        width: 100%;
    }*/

}

.a7 li{
    width: 16.66%;
}

.a7 li a{
    display: block;
    padding: 5px;
}

.a7 li i{
    margin: 5px auto;
    display: block;
}

.a7 li i.s1{
    background-position: 0px -120px;
}

.a7 li i.s2{
    background-position: -40px -120px;
}

.a7 li i.s3{
    background-position: -80px -120px;
}

.a7 li i.s4{
    background-position: -120px -120px;
}

.a7 li i.s5{
    background-position: -160px -120px;
}

.a7 li i.s6{
    background-position: -200px -120px;
}

.a7 a:hover {
    box-shadow: 0 3px 12px rgba(0, 85, 136, .2);
    transform: translate(0, -3px);
}

.problem{
    line-height: 40px;
    margin-top: 10px;
    padding: 5px 20px 5px 30px;
    border-radius: 50px;
    border:1px solid #c7daf8;
    background:#f1faff  url(../images_2021/problem_bg.jpg) 0 0px repeat-x;
}

.problem b{
    display: inline-block;
    padding-left: 40px;
    background: url(../images_2021/problem.png) 0 6px no-repeat;
}

.problem span,
.problem a{
    display: inline-block;
    color: #135a9c;
    padding:0px 10px;
}

.problem a{
    font-weight: bold;
    transition: all .3s;
}

.problem a:hover{
    transform: translate(0, -3px);
}

@media (max-width: 1024px) {

    .a7 li{
        width: 33.33%;
    }

}

@media (max-width: 480px) {

    .a7 li{
        width: 50%;
    }

    .problem b{
        display: block;
    }

}


/* part6结束 */

/* 列表页、正文页  开始*/
.main{
  position: relative;
}

.where{
    padding: 0px;
}

.side h2 {
    position: relative;
    height: 138px;
    margin: 0px;
    padding: 0px;
    background: url(../images_2021/side-menu.png) 0px 0px no-repeat;
}

.side h2 b{
    display: inline-block;
    padding-left: 30px;
    display: block;
    text-align: left;
    color: #fff;
    font-size: 26px;
    line-height: 68px;
    font-weight: bold;
}

.side-menu ul {
    margin: 0px 0px 0px 30px;
    margin-top: -70px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.side-menu li {
    position: relative;
    display: block;
    line-height: 56px;
  }
 
.side-menu li a{
    text-align: left;
    color: #333;
    font-size: 18px;
    padding-left: 30px;
}
 
.side-menu li a:hover,
.side-menu li.current a  {
    color: #2f7dc7;
    background-color: transparent;
}
 
.side-menu li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 5px;
    height: 5px;
    background-color: #ccc;
    border-radius: 100px;
	margin-top: -2px;
}
 
.side-menu li:hover:before {
    background-color: #357fe5;
}
 
.side-menu li a:before{
  display: none;
}
 
.side-menu li a i{
  display: block;
  position: absolute;
  top: 35%;
  right: 20px;
  color: #fff;
  font-size: 18px;
}

.list-b li{
    padding:20px;
    border-bottom: 2px dotted #ddd;
}

.list-b li h4{
    font-size: 18px;
    font-weight: normal;
}

.list-b li p{
    color: #8e8e8e;
    font-size: 16px;
}

.list-b li p i{
    display: inline-block;
    color: #ff920c;
    font-size: 16px;
    padding: 0px 10px;
}

.hot{
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 0px 10px;
    background: url(../images_2021/hot.png) 0px 2px no-repeat;
    background-size: 80%;
}

/* 正文页 */

.article{
    padding: 20px 0;
}

.article h2{
    color: #2f7dc7;
    font-size: 28px;
    display: block;
}

.article .info span{
    color: #555;
}

.article .info span i{
    display: inline-block;
    color: #ff920c;
    font-size: 18px;
    padding: 0px 10px;
    margin:0px;
}


.article .option{
    border-bottom: none;
    border-top: none;
    margin:0px;
    padding: 10px 20px;
}

.article-box{
    padding-top: 0px;
}

.article .option .share {
    float: none;
    display: inline-flex;
    padding: 0px 20px;
}

.article .option .share a{
    padding: 0px;
    border:none;
}

.jfontsize {
    float: none;
    color: #747474;
    display: inline-flex;
}

.article .option .share a+a {
    margin-left: 10px;
}

.article .option .share span {
    color: #747474;
    display: block;
    line-height: 30px;
    float: left;
    margin-top: 6px;
    font-size: 16px;
}
.article .option .bds_weixin {
    width: 30px;
    height: 30px;
    background: url(../images_2021/share_i.png) 0px 0px no-repeat !important;
}
.article .option .bds_tsina {
    width: 30px;
    height: 30px;
    background: url(../images_2021/share_i.png) -30px 0px no-repeat !important;
}
.article .option .bds_sqq {
    width: 30px;
    height: 30px;
    background: url(../images_2021/share_i.png) -60px 0px no-repeat !important;
}
.article .option .bds_qzone {
    width: 30px;
    height: 30px;
    background: url(../images_2021/share_i.png) -90px 0px no-repeat !important;
}

/* 分页 */
.pages .current{
    background-color: #2f7dc7;
    border:1px solid #135a9c;
}

.pages a:hover{
    background-color: #2f7dc7;
}

.pages a, .pages span {
    background-color: #fcfdfe;
    border:1px solid #d3e2ef;
}

@media (max-width: 1200px){
    .where {
        padding: 0px 20px;
    }

}

@media (max-width: 768px) {
    .side {
        box-shadow: none;
    }

    .side-menu li {
        width: 50%;
    }

    .side-menu li a {
        font-size: 14px;
    }

    .side-menu h2 {
        display: none;
    }

    .side-menu ul {
        margin: 0 -5px;
        padding: 0px;
        box-shadow:none;
    }

    .side-menu li {
        float: left;
        width: 50%;
        border-bottom:none;
    }

    .side-menu li a {
        margin: 5px;
        padding: 0 15px;
        line-height: 40px;
        font-size: 16px;
        background-color: #eee;
        border-radius: 3px;
    }

    .side-menu li.current a {
        background-color: #2f7dc7;
        color: #fff;
    }

    .list-menu02 li{
        width: 50%;
    }

    .list-menu02 li a{
        font-size: 18px;
        padding: 0px 20px;
    }
}

/* 列表页、正文页  结束*/


/* 页尾 开始 */
.gov {
    right: 150px;
}
.jc {
    right: 30px;
}
.footer{
    background-color: #3a3a3a;
}

.links, .copyright{
	width: 1200px;
}

.links>ul>li>a{
	background-color: #434444;
	color: #fff;
	border: none;
	text-align: left;
}

.copyright .p20,.copyright .credit {
	background-color: #434444;
	line-height: 30px;
}

.copyright p,.copyright p a,.copyright p span{
	color: #fff;
	font-size: 16px;
        margin-left: 0px;
}

.copyright .creditl img{
	float: left;
    border-radius: 20px;
    padding: 8px 10px;
}

.copyright .creditl span{
	display: inline-block;
}

.copyright .credit{
	position: relative;
	/*width: 74%;*/
	width:100%;
}

.jc{
	right: 30px;
}

.flnew{
	float: left;
}

.new02{
	padding-left: 30px;
}

.new02 .gray{
	background-color: #7b7c7c;
    padding: 3px 10px;
    border-radius: 5px;
}

@media(max-width: 1200px){
	.inner, .nav ul, .links, .copyright{
		width: 100%;
	}
	.ht .fl{
		margin-left: 0px;
	}
	.ht .fr{
		margin-right: 0px;
	}
	/*.copyright .credit{
		width: 64%;
	}*/
}

/* 页尾自适应 开始*/
@media (max-width: 1024px){
.linkrow1{
    width: 1024px !important;
    left: 10px !important;
}
.linkrow2{
   width: 1024px !important;
    left: -251px !important;
}
.linkrow3{
   width: 1024px !important;
   left: -512px !important;
}
.linkrow4{
     width: 1024px !important;
   left: -773px !important;
}
.links li li{
width:100% !important;
}
.gov,.jc{
	top: 75%;
}
}
@media (max-width: 768px){
.linkrow1{
  width: 730px !important;
     left: 10px !important;
}
.linkrow2{
    width: 730px !important;
    left: 10px !important;
}
.linkrow3{
    width: 728px !important;
    left: 10px !important;
}
.linkrow4{
    width: 728px !important;
    left: 10px !important;
}
.links li li{
	width:100% !important;
}
.copyright .credit{
	width: 100%;
}
.flnew,.copyright .creditl img{
	float: none;
}
.creditl img{
	margin-top: -28px;
}
.new02{
	margin-top: 30px;
}   
.jc{
    right: 0px;
} 
.nav li a{
	    font-size: 20px;
}
.ht .fl{
	display: none;
}
.gov {
    right: 0px;
}
}

@media (max-width: 480px){
.linkrow1{
    width: 95% !important;
    left: 10px !important;
}
.linkrow2{
    width: 95% !important;
    left: 10px !important;

}
.linkrow3{
    width: 95% !important;
    left: 10px !important;

}
.linkrow4{
    width: 95% !important;
    left: 10px !important;
}
.links li li{
width:100% !important;
}
.article-box{
	margin: 0px !important;
}
.hid{
	display: none;
}
.header h1{
	background-size: auto 60%;
}
.header h2{
	background-size: auto 28%;
}
.search-box input{
	width: 100%;
}
}
@media(max-width: 320px){
	.header h1{
	background-size: auto 50%;
}
}
/* 页尾自适应 结束*/
/* 页尾 结束 */


/* 互动交流  开始*/
.bmwd,
.bmwd a{
    font-size: 18px;
    color: #135a9c;
}

.bmwd a{
    display: inline-block;
    padding: 0px 5px;
}

table.stripe {
    width: 100%;
    font-size: 18px;
    background-color: #fff;
}

table.stripe thead th {
    position: relative;
    color:#135a9c;
    line-height: 45px;
    background-color: #ebf7ff;
}

table.stripe th, table.stripe td {
    padding:3px 10px;
    line-height:2em;
    text-align: center;
}
@media(max-width:1024px){
	table.stripe th, table.stripe td {
		padding:3px 0px;
	}
}

.dczj .list-b {
    margin-left: -10px;
    margin-right: -10px;
}

.dczj .list-b li {
    position: relative;
    width: 47%;
    margin: 1.5%;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.dczj .list-b li h4{
    font-size: 16px;
    font-weight: bold;
    max-height: 100%;
    padding-bottom: 20px;
    overflow: hidden;text-overflow: 
    ellipsis; display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    border-bottom: 1px solid #ccc;
}

.dczj .list-b li:before {
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    width: 6px;
    height: 16px;
    margin-top: -8px;
    background-color: #4e8df6;
}

.dczj .list-b li .state {
    position: absolute;
    right: 20px;
    bottom: 25px;
    display: block;
    padding: 0 10px;
    line-height: 30px;
    background-color: #ed8e30;
    color: #fff;
    border-radius: 3px;
}

.dczj .list-b li .state.on {
    background-color: #5b92d5;
}

.a4{
    margin: 0px -2% 20px -2%;
}

.a4 li{
    width: 44%;
    margin: 2% 3%;
}

.a4 li a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 70px;
    font-size: 22px;
    line-height: 40px;
    padding: 15px 15px;
    color: #135a9c;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.a4 li a:hover {
    font-weight: bold;
    box-shadow: 0 3px 12px rgba(0, 85, 136, .2);
    transform: translate(0, -3px);
}

.a4 li i {
    margin-right: 10px;
}

.a4 li i.s1{
    background-position: 0px -120px;
}

.a4 li i.s2{
    background-position: -40px -120px;
}

.a4 li i.s3{
    background-position: -80px -120px;
}

.a4 li i.s4{
    background-position: -120px -120px;
}

.video .v {
    position: relative;
 /* max-height: 120px; */
    overflow: hidden;
}

.video .v img {
    display: block;
    width: 100%;
}

.video-info h4 {
    margin-bottom: 10px;
}

.video-info h4 a{
    line-height: 32px;
    font-size: 20px;
    color: #135a9c;
}

.video-info p{
    font-size: 16px;
    color: #5d5c5c;
}

.zxft li:before {
    display: none;
    padding-left: 0px;
}

.zxft li b{
    display: inline-block;
    color: #005aa8;
    padding-left: 20px;
    background: url(../images_2021/video.png) 0px 45% no-repeat;
}

@media (max-width: 1200px) {

    /*.dczj .list-b li {
        width: 100%;
    }*/

}
@media (max-width: 480px) {
    .a4 li i{
        display: block;
        margin: 0px auto;
    }
	.a4 li a {
    padding: 5px 15px;
}

}
/* 互动交流  结束*/

/* 领导列表 开始*/

.leader-menu li a {
    display: block;
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
    line-height: 60px;
}

.leader .pic img {
    display: block;
    width: 100%;
}

.leader dt {
    float: left;
    width: 100px;
    padding: 120px 0 0 20px;
    line-height: 30px;
    font-size: 22px;
}

.leader dd {
    border-bottom: 1px solid #ddd;
    padding: 15px 15px 15px 125px;
}

.leader .list-p li a {
    padding: 15px;
    text-align: center;
}

.leader .list-p .pic {
    position: relative;
    overflow: hidden;
    display: block;
    width: 150px;
    height: 210px;
    margin: 0 auto 20px;
    background-color: #eee;
}

.leader .list-p .pic+h4 {
    max-height: 70px;
}

.leader .list-b li{
    border-bottom:none;
}

.leader .list-b .pic {
    float: left;
    position: relative;
    overflow: hidden;
    display: block;
    width: 110px;
    height: 160px;
    margin: 0;
    background-color: #eee;
    border-radius: 6px;
}

.leader .list-b li h4,
.leader .list-b li h4~p,
.leader .list-b li .leader-info {
    margin-left: 125px;
}

.leader .list-b li h4 {
    font-size: 24px;
    font-weight: bold;
}

.leader .list-b li h4~p {
    padding: 5px 0;
}

.leader .list-b li p{
    line-height: 30px;
}

.leader-info {
    padding-left: 20px;
}

.leader-info h5 {
    margin-left: -20px;
    color: #2f7dc7;
}

.leader-info p {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 80px;
    padding: 5px 0;
}

.leader-info p .btn {
    margin-top: 10px;
}

.leader-info p+h5 {
    margin-top: 20px;
}

.leader .list-b li .card {
    padding:35px 15px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 27, 128, .1);
}

.leader .list-b li:first-child .card {
    box-shadow:none;
    margin: 0px 245px;
    padding: 40px 30px;
    min-height: 350px;
    background: url(../images_2021/leader_bg.jpg) center 0px no-repeat;
    background-size: cover;
}

.leader .list-b li:first-child .pic{
    width: 195px;
    height: 270px;
}

.leader .list-b li:first-child h4, .leader .list-b li:first-child h4~p, .leader .list-b li:first-child .leader-info{
    margin-left: 235px;
}

@media (max-width:1200px) {
    .leader dt {
        float: none;
        width: 100%;
        margin: 0;
        padding: 20px;
        line-height: 30px;
        text-align: center;
        font-size: 22px;
    }

    .leader dd {
        border-bottom: 1px solid #ddd;
        padding: 15px;
    }

    .leader .list-b li:first-child .card{
        margin:0px;
    }
}


@media (max-width:1024px) {


    .leader .list-b li p{
        line-height: 30px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

}

@media (max-width:480px) {
    .leader .list-p .pic {
        width: 120px;
        height: 168px;
    }

    .leader .list-b .pic,
    .leader .list-b li:first-child .pic {
        width: 80px;
        height: 112px;
    }

    .leader .list-b li h4,
    .leader .list-b li h4~p,
    .leader .list-b li .leader-info,
    .leader .list-b li:first-child h4, 
    .leader .list-b li:first-child h4~p, 
    .leader .list-b li:first-child .leader-info {
        margin-left: 100px;
    }

    .leader .list-b li:first-child .pic {
        margin-bottom: 20px;
    }

    .leader .list-b li:first-child .leader-info {
        clear: both;
        margin-left: 0;
    }
}

@media (max-width:360px) {
    .leader .list-p .pic {
        width: 100px;
        height: 140px;
    }

    .leader .list-b li .card {
        padding: 10px;
    }

}

/* 领导列表 结束*/

/* 专题专栏  开始 */
.t7,
.t8 {
    margin: 0px 0px 20px 0px;
    padding: 0px;
    line-height: 56px;
}

.t7 b,
.t8 b{
    display: inline-block;
    font-size: 24px;
    color: #135a9c;
    padding: 0px 5px;
    font-weight: bold;
}

.t7{
    background: url(../images_2021/line03.jpg) bottom left no-repeat;
}

.t8{
    background: url(../images_2021/line04.jpg) bottom left no-repeat;
}

.news_topic {
    position: relative;
}

.news_topic .scroll {
    position: relative;
    margin: 0 auto;
}

.news_topic .swiper-wrapper .swiper-slide div{
    position: relative;
    display: block;
    width: 340px\9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: 25px solid #fff;
    margin:15px;
}

.news_topic .swiper-wrapper .swiper-slide div .pic{
    display: block;
    text-align: center;
}

.news_topic .swiper-wrapper .swiper-slide div img {
    width: 100%;
    max-width:340px;
    height: 190px;
    border-radius: 5px;
}

.news_topic .btn {
    display: block;
    border-radius: 50px;
    line-height: 30px;
    color: #fff;
    font-size: 18px;
    padding: 10px;
    margin: 10px 60px;
    background: #2f7dc7;
}

.news_topic .btn a{
    color: #fff;
}

.news_topic .btn:hover{
    background-color: #135a9c;
}

.news_topic .navi {
    position: absolute;
    left: 0;
    bottom: 90px;
    width: 100%;
    line-height: 0;
    font-size: 0;
}

.news_topic .navi li,
.news_topic .swiper-pagination-bullet {
    width: 20%;
    height: 10px;
    display: inline-block;
    border: 1px solid #005aa8;
    margin: 0 !important;
    border-radius: 0;
    background: #4d8cc2;
    opacity: 1;
}

.news_topic .navi .on,
.news_topic .swiper-pagination-bullet-active {
    background-color: #ff9402;
}

@media (max-width: 1200px) {
    .news_topic .scroll {
        position: relative;
        margin: 0 -10px;
    }

    .news_topic li img {
        height: 100%;
    }
}


.gd_topic {
    position: relative;
}

.gd_topic .scroll {
    position: relative;
    margin: 0 auto;
}

.gd_topic li {
    border-radius: 5px;
    width: 340px\9;
}

.gd_topic li a {
    position: relative;
    display: block;
    width: 340px\9;
    text-align: center;
    border: 25px solid #fff;
    margin: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.gd_topic li img {
    width: 100%;
    max-width:340px;
    height: 190px;
    border-radius: 5px;
}

.gd_topic li a .file{
    position: absolute;
    top:0px;
    right: 0px;
    color: #fff;
    line-height: 36px;
    padding: 0px 20px;
    background-color: #d9454b;
    border-radius: 0px 5px 0px 5px;
}

.gd_topic-prev,
.gd_topic-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    background-color: rgba(189, 189, 189, .5);
    z-index: 999;
    transition: all .3s;
}

.gd_topic-prev .iconfont,
.gd_topic-next .iconfont {
    font-size: 20px;
    color: #fff;
    font-weight: normal;
}

.gd_topic-prev {
    left: 10px;
    background-image: none;
}

.gd_topic-next {
    right: 10px;
    background-image: none;
}

@media (max-width: 1200px) {
    .gd_topic .scroll {
        position: relative;
        margin: 0 -10px;
    }

    .gd_topic li img {
        height: 100%;
        margin:0px auto;
    }
}

.tj_topic {
    padding: 20px;
    margin-bottom: 30px;
   box-shadow: 0 0 10px rgba(0, 0, 0, .1); 
}

.ztzl_pic img{
    width: 100%;
    height: 190px;
    border-radius: 8px;
}

/* 专题专栏  结束 */

/* 联系我们  开始 */
.contact h4{
    font-size: 20px;
    font-weight: normal;
}

.contact p{
    color: #888888;
}

.contact h4,
.contact p{
    line-height: 30px;
}

.dxe{
    padding: 20px;
    text-align: center;
    background: url(../images_2021/contact_bg01.jpg) 50% no-repeat;
}

.dxe a{
    color: #fff;
    display: block;
    line-height: 40px;
    padding: 10px 0px;
    background: url(../images_2021/dxe.png) 25% 0px no-repeat;
}

.dxe a b{
    font-size: 28px;
}

.dxe a span{
    font-size: 24px;
}

.map{
    width: 100%;
    height: 460px;
    background-image: url(../images_2021/map.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.wzgl,
.kjfw{
    padding: 20px;
    text-align: center;
    background: url(../images_2021/contact_bg02.jpg) 50% no-repeat;
}

.wzgl a,
.kjfw a{
    color: #fff;
    display: block;
    font-size: 20px;
    line-height: 30px;
    padding: 10px 0px;
    font-weight: bold;
    font-style:italic;
    -webkit-text-stroke: 0.5px #0079fe;
    background: url(../images_2021/dh.png) 15% 50% no-repeat;
}

.kjfw a{
    padding: 25px 0px;
    background: url(../images_2021/dh.png) 3% 50% no-repeat;
}

.zxdh{
    position: relative;
    padding: 25px;
    height: 495px;
    background: url(../images_2021/zxdh_bg.jpg) 50% no-repeat;
}

.map02{
    width: 50%;
    height: 410px;
    background-image: url(../images_2021/map.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.a9{
    position: absolute;
    top: 20%;
    right: 25px;
    width: 700px;
    padding: 20px 10px;
    background-color: #f5955a;
}

.a9 li{
    color: #fff;
    padding: 0px 10px;
    line-height: 32px;
}

.a9 li a{
    color: #fff;
    font-size: 14px;
}

.organ .tab{
    border-bottom:none;
}

.organ .tab a,
.organ .tab b {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    margin: 0px 10px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border:1px solid #ccc;
}

.organ .tab .current {
    color: #fff;
    background-color: #2f7dc7;
    border:1px solid #2f7dc7;
}

.organ .tab {
    height: 30px;
    line-height: 30px;
}

.organ .tab a:after,
.organ .tab b:after {
    display: none;
}

.a10 li {
    position: relative;
    background: url(../images_2021/dot02.jpg) 25px 10px no-repeat;
}

.a10 li a {
    width: 100%;
    height: 60px;
    padding: 0px 0px 0px 25px;
    line-height: 1.5;
    font-size: 16px;
}

.a10 li a span {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}



@media (max-width: 480px) {

    .dxe a,
    .wzgl a,
    .kjfw a{
        background: none;
    }

    .map{
        width: 100%;
        height: 230px;
        background-size: 100%;
    }

    .zxdh{
        height: 100%;
        background:none;
    }

    .a9{
        position:relative;
        top:0;
        right: 0px;
        width: 100%;
    }

    .map02{
        width: 100%;
        height: 260px;
        background-size: 100%;
    }

    .a10 li a{
        height: 40px;
    }

}

/* 联系我们  结束 */

/* 20210720修改  开始 */
/* ————————————————————————————头部修改———————————————————————————— */
.nav {
    height: 53px;
    background-color: #1d8bd8;
    border-bottom: 1px solid #135a9c;
}

.nav li{
    width: auto;
    padding: 0px 18px;
}

.nav li a i {
    display: block;
    float: left;
    margin-right: 5px;
    width: 40px;
    height: 40px;
    background-image: url(../images_2021/icons_02.png);
    background-image: url(../images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.nav li a {
    display: block;
    height: 54px;
    padding: 7px 0px;
    line-height: 40px;
}

.nav li a i.s1{
    background-position: -160px -440px;
}

.nav li a i.s2{
    background-position: 0px -480px;
}

.nav li a i.s3{
    background-position: -40px -480px;
}

.nav li a i.s4{
    background-position: -80px -480px;
}

.nav li a i.s5{
    background-position: -120px -480px;
}

.nav li a i.s6{
    background-position: -160px -480px;
}

.nav li a i.s7{
    background-position: -200px -480px;
}

.nav li+li:before{
    display: none;
}

.nav li a:hover, 
.nav li.current, 
.nav li.current a{
    color: #fff;
    background-color: transparent;
	font-weight: bold;
}


/* ————————————————————————————专题专栏修改———————————————————————————— */

.tjzt{
    display: inline-block;
}

.tjzt li {
    margin: 1%;
    padding:2%;
    width: 31.3%;
    float: left;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 10px rgba(47, 132, 247, .1);
}

.tjzt li a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    min-height: 190px;
    border-radius: 5px;
}

.tjzt li a img{
    width: 100%;
    height: 190px;
}

.news_topic-prev,
.news_topic-next {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: block;
    width: 48px;
    height: 70px;
    margin-top: -48px;
    line-height: 70px;
    text-align: center;
    cursor: pointer;
    background-color: rgba(189, 189, 189, .5);
    z-index: 999;
    transition: all .3s;
}

.news_topic-prev .iconfont,
.news_topic-next .iconfont {
    font-size: 20px;
    color: #fff;
    font-weight: normal;
}

.news_topic-prev {
    left: -10px;
    background-image: none;
}

.news_topic-next {
    right: -10px;
    background-image: none;
}

/* ————————————————————————————领导综合页修改———————————————————————————— */

.leader .list-p li{
    height: 360px;
}

/* ————————————————————————————机构设置综合页修改———————————————————————————— */

.a5 li {
    position: relative;
    padding:5px 10px;
}

.a5 li a {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    line-height: 1.5;
    font-size: 18px;
}

.a5 li a span {
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.a5 li:before{
    content: "";
    position: absolute;
    top: 18px;
    left: 15px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #7e8fc3;
    border-radius: 100px;
}

.a11 li{
    position: relative;
    padding: 20px 30px;
    background-color: #f2f7fc;
}

.a11 li a{
    color: #2f6eaa;
    text-align: left;
    font-weight: bold;
}

.a11 li:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #2f6eaa;
    border-radius: 100px;
}

@media (max-width: 480px) {
    .a5 li a span {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}



/* 20210720修改  结束 */

/* 网站地图  开始 */
.sitemap{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}

.sitemap h4{
    display: block;
    padding:20px;
    line-height: 40px;
    min-height: 160px;
    text-align: center;
    background-color:#f1faff;
}

.sitemap h4 i{
    display: block;
    width: 40px;
    height: 40px;
    margin:20px auto 0px;
    background-image: url(/material/images_2021/icons_02.png);
    background-image: url(/material/images_2021/icons_02_ie8.png)\9;
    background-size: 240px auto;
    background-repeat: no-repeat;
}

.sitemap .list-t li:before {
    background-color: #2f7dc7;
}

.sitemap h4 i.s1{
    background-position: 0px -520px;
}

.sitemap h4 i.s2{
    background-position: -40px -520px;
}

.sitemap h4 i.s3{
    background-position: -80px -520px;
}


/* 网站地图  结束 */

.interview {
    line-height: 28px;
    font-size: 16px;
}

.interview-video {
    background-image: linear-gradient(to bottom, #e9e9e9, #fff);
}

.interview-video video {
    width: 100%;
}

.interview-pic .prev,
.interview-pic .next {
    display: none;
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000, endcolorstr=#7F000000);
    color: #fff;
    animation-duration: .3s;
}

.interview-pic:hover .prev,
.interview-pic:hover .next {
    display: block;
}

.interview-pic .prev:hover,
.interview-pic .next:hover {
    background: #37e;
    filter: none;
    color: #fff;
}

.interview-pic .prev {
    left: 0;
}

.interview-pic .next {
    right: 0;
}

.interview-info img {
    width: 60%;
    margin: 10px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.interview-info h3 {
    line-height: 40px;
    font-size: 18px;
    color: #005aa8;
}

.interview-info h3 i {
    margin-right: 10px;
    color: #ccc;
    vertical-align: -1px;
}

.interview-info p {
    font-size: 16px;
    line-height: 32px;
}

.interview-text {
    max-height: 800px;
    overflow: hidden;
}

.interview-text:hover {
    overflow-x: hidden;
    overflow-y: auto;
}

.interview-text p {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.interview-text p.q {
    cursor: pointer;
}

.interview-text p.q,
.interview-text p.a {
    padding: 15px 15px 15px 55px;
}

.interview-text p.q:before,
.interview-text p.a:before {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 18px;
}

.interview-text p.q:before {
    content: 'Q';
    color: #048;
}

.interview-text p.a:before {
    content: 'A';
    color: #ccc;
}

.interview-text p.current {
    background-color: #f8f8f8;
}

.lnterview .list-b li .pic {
    float: left;
    position: relative;
    width: 240px;
    height: 150px;
    margin-right: 20px;
    overflow: hidden;
}

.lnterview .list li:hover .pic img {
    transform: scale(1.1);
}

.lnterview .list .pic img {
    display: block;
    width: 100%;
    min-height: 100%;
    transition: all 0.3s;
}

@media (max-width: 480px) {
    .lnterview .list-b li .pic {
        width: 350px;
        height: 260px;
        margin-right: 0px;
        margin-bottom: 10px;
    }

    .lnterview .list-b li .pic img {
        width: 100%;
    }

    .lnterview .list-b li h4 {
        width: 100%
    }
}

@media (max-width: 320px) {
    .lnterview .list-b li .pic {
        width: 260px;
        height: 200px;
    }
}

/* 功能页面 结束 */
.no-print a{
	cursor: pointer;
}

